feat: dockerize image proxy

This commit is contained in:
Lea
2022-12-19 18:05:16 +01:00
parent efd36eb9f5
commit 7c8e99c604
2 changed files with 19 additions and 0 deletions

7
p/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:18
WORKDIR /app
COPY package.json /app/
COPY p /app/p
RUN npm install --frozen-lockfile
ENV NODE_ENV production
CMD ["node", "p/server.js"]