2022-07-13 08:15:53 +00:00
|
|
|
# syntax=docker/dockerfile:1.4
|
|
|
|
|
2020-05-11 19:40:39 +00:00
|
|
|
# Create image based on the official Node image from dockerhub
|
2022-07-13 08:15:53 +00:00
|
|
|
FROM node:lts-buster AS development
|
2020-05-11 19:40:39 +00:00
|
|
|
|
|
|
|
# Create app directory
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
# Copy dependency definitions
|
|
|
|
COPY package.json /usr/src/app
|
|
|
|
COPY package-lock.json /usr/src/app
|
|
|
|
|
|
|
|
# Install dependecies
|
|
|
|
#RUN npm set progress=false \
|
|
|
|
# && npm config set depth 0 \
|
|
|
|
# && npm i install
|
|
|
|
RUN npm ci
|
|
|
|
|
|
|
|
# Get all the code needed to run the app
|
|
|
|
COPY . /usr/src/app
|
|
|
|
|
|
|
|
# Expose the port the app runs in
|
2020-05-13 07:42:39 +00:00
|
|
|
EXPOSE 3000
|
2020-05-11 19:40:39 +00:00
|
|
|
|
|
|
|
# Serve the app
|
|
|
|
CMD ["npm", "start"]
|
2022-07-13 08:15:53 +00:00
|
|
|
|
|
|
|
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" ]
|