youtuber-blog/Dockerfile
2024-07-22 21:00:58 +02:00

21 lines
524 B
Docker

FROM node:20-alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+) and yarn.lock because we are using yarn
COPY package*.json yarn.lock ./
# Run yarn without generating a yarn.lock file
RUN yarn --pure-lockfile
# Bundle app source
COPY . ./
# Use the port used by our server.js configuration
EXPOSE 3000
# This will run `yarn start` when the docker image is ran
CMD [ "yarn", "start" ]