WUT_Computer_Science/frontend/Dockerfile_frontend

16 lines
236 B
Plaintext
Raw Normal View History

2024-06-17 00:55:05 +02:00
FROM node:latest
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# If you also need http-server globally
RUN npm install -g http-server
# Bundle app source
COPY . .
EXPOSE 8080
CMD ["http-server", "-p 8080"]