mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 19:43:03 +02:00
16 lines
236 B
Plaintext
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"]
|