27 lines
624 B
Docker
27 lines
624 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
# Comments are provided throughout this file to help you get started.
|
|
# If you need more help, visit the Dockerfile reference guide at
|
|
# https://docs.docker.com/go/dockerfile-reference/
|
|
|
|
# Want to help us make this template better? Share your feedback here: https://forms.gle/ybq9Krt8jtBL3iCk7
|
|
|
|
ARG NODE_VERSION=18.0.0
|
|
|
|
FROM node:${NODE_VERSION}-alpine
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json .
|
|
# Download dependencies.
|
|
RUN npm install
|
|
|
|
# Run the application as a non-root user.
|
|
USER node
|
|
|
|
# Copy the rest of the source files into the image.
|
|
COPY . .
|
|
|
|
# Run the application.
|
|
CMD node index.js
|