This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
|
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" ]
|