WUT_Computer_Science/frontend/Dockerfile_frontend
2024-06-17 00:55:05 +02:00

16 lines
236 B
Plaintext

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