File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11FROM ubuntu:noble
2+ ARG TARGETARCH
23
34RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
45 && apt-get install -y \
56 curl \
67 && apt-get clean -y && rm -rf /var/lib/apt/lists/*
78
89# install go-task
9- RUN curl -sSL https://github.com/go-task/task/releases/latest/download/task_linux_amd64.deb -o /tmp/task.deb && \
10- dpkg -i /tmp/task.deb && \
11- rm /tmp/task.deb
10+ RUN curl -sSL https://github.com/go-task/task/releases/latest/download/task_linux_$TARGETARCH.tar.gz | \
11+ tar zx -C /usr/local/bin/ task
1212
1313LABEL org.opencontainers.image.source=https://github.com/choopm/stdfx
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ services:
33 build :
44 context : .
55 dockerfile : Dockerfile
6+ image : ghcr.io/choopm/stdfx-devcontainer:latest
67 init : true
78 volumes :
89 - ../:/workspace:delegated
You can’t perform that action at this time.
0 commit comments