mirror of
https://github.com/opengram-server/opengram.git
synced 2026-07-27 16:06:10 +03:00
Initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
FROM node:18-alpine
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install --production
|
||||
|
||||
COPY server.js ./
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["node", "server.js"]
|
||||
Reference in New Issue
Block a user