single snapshot test
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:20-alpine
|
||||
WORKDIR /app
|
||||
COPY package.json tsconfig.json ./
|
||||
RUN npm install
|
||||
COPY src ./src
|
||||
COPY plugins ./plugins
|
||||
COPY docs ./docs
|
||||
COPY .env.example ./
|
||||
RUN npm run build
|
||||
EXPOSE 4110
|
||||
CMD ["npm", "start"]
|
||||
Reference in New Issue
Block a user