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:
parent
9f4f9d8fb8
commit
74317904bd
5 changed files with 96 additions and 4 deletions
|
@ -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" ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue