Skip to content
Snippets Groups Projects
Dockerfile 328 B
Newer Older
Arie Peterson's avatar
Arie Peterson committed
FROM node:18

WORKDIR /home/node/app

Arie Peterson's avatar
Arie Peterson committed
# First copy only files necessary for installing dependencies, so that we can
# cache that step even when our own source code changes.
COPY package.json yarn.lock ./
Arie Peterson's avatar
Arie Peterson committed

RUN yarn install

Arie Peterson's avatar
Arie Peterson committed
# Now copy the rest of the source.
COPY . .

Arie Peterson's avatar
Arie Peterson committed
ENV NODE_OPTIONS="--openssl-legacy-provider"
CMD yarn start