1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 02:38:07 +02:00

add configuration to use react-rust-postgres sample with Docker Dev Environments feature (#264)

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
Guillaume Lours 2022-07-08 17:54:08 +02:00 committed by GitHub
parent b53e4542c9
commit c781f1cbb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 94 additions and 0 deletions

View file

@ -1,3 +1,4 @@
# syntax=docker/dockerfile:1.4
FROM node:lts AS development
ENV CI=true
@ -11,6 +12,21 @@ COPY . /code
CMD [ "npm", "start" ]
FROM development as dev-envs
RUN <<EOF
apt-get update
apt-get install -y --no-install-recommends git
EOF
RUN <<EOF
useradd -s /bin/bash -m vscode
groupadd docker
usermod -aG docker vscode
EOF
# install Docker tools (cli, buildx, compose)
COPY --from=gloursdocker/docker / /
CMD [ "npm", "start" ]
FROM development AS builder
RUN npm run build