Files
mussea-signer/Dockerfile
2022-06-28 20:35:11 +02:00

13 lines
259 B
Docker

FROM node:18-alpine
WORKDIR /usr/src/app
# Setup Alpine for building "canvas" package
RUN apk add --no-cache python3 make g++ pkgconfig cairo-dev pango-dev
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
EXPOSE 8080
CMD [ "node", "api/index.js" ]