This commit is contained in:
parent
8edf0f1afe
commit
25ebc0b26e
|
|
@ -0,0 +1,10 @@
|
||||||
|
FROM node:18-alpine
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm ci --only=production
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
EXPOSE 8081
|
||||||
|
CMD ["node", "app.js"]
|
||||||
Loading…
Reference in New Issue