This repository has been archived on 2024-01-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2022-05-10 00:15:45 +03:00
|
|
|
FROM node:18-alpine
|
|
|
|
|
|
|
|
|
|
# Create app directory
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
# Bundle app source
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
|
|
# Install Requirements and build the app
|
|
|
|
|
RUN npm install && npm run build;
|
|
|
|
|
|
|
|
|
|
EXPOSE 5386
|
|
|
|
|
CMD [ "npm", "run", "start" ]
|