1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 10:43:35 +02:00
This commit is contained in:
techopsmasters 2024-05-18 16:50:55 +07:00 committed by GitHub
commit 37edbc01ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 116 additions and 208 deletions

View file

@ -12,15 +12,11 @@ ENV HOST=0.0.0.0
CMD ["yarn", "run", "serve"]
FROM development as dev-envs
RUN <<EOF
apk update
apk add git
EOF
RUN apt update && \
apt add git
RUN <<EOF
addgroup -S docker
RUN addgroup -S docker && \
adduser -S --shell /bin/bash --ingroup docker vscode
EOF
# install Docker tools (cli, buildx, compose)
COPY --from=gloursdocker/docker / /
CMD ["yarn", "run", "serve"]