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

add configuration to use react-express-mongo sample with Docker Dev Environments feature (#271)

Signed-off-by: Guillaume Lours <guillaume.lours@docker.com>
This commit is contained in:
Guillaume Lours 2022-07-13 10:15:53 +02:00 committed by GitHub
parent 9f4f9d8fb8
commit 74317904bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 96 additions and 4 deletions

View file

@ -1,5 +1,7 @@
# syntax=docker/dockerfile:1.4
# Create image based on the official Node image from dockerhub
FROM node:lts-buster
FROM node:lts-buster AS development
# Create app directory
WORKDIR /usr/src/app
@ -22,3 +24,18 @@ EXPOSE 3000
# Serve the app
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" ]