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.
kato.cafe/Dockerfile

14 lines
206 B
Docker
Raw Normal View History

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" ]