mirror of
https://github.com/docker/awesome-compose.git
synced 2026-06-30 18:40:32 +02:00
662dfc07d1
* ci: enforce ignore-scripts policy for Node package managers --------- Co-authored-by: securityeng-bot[bot] <219863240+securityeng-bot[bot]@users.noreply.github.com>
44 lines
872 B
Docker
44 lines
872 B
Docker
# syntax=docker/dockerfile:1.4
|
|
|
|
# Create image based on the official Node image from dockerhub
|
|
FROM node:lts-buster AS development
|
|
|
|
# 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
|
|
COPY .npmrc .
|
|
COPY .yarnrc.yml .
|
|
RUN npm ci
|
|
|
|
# Get all the code needed to run the app
|
|
COPY . /usr/src/app
|
|
|
|
# Expose the port the app runs in
|
|
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" ]
|