mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 18:03:14 +02:00
feat: make website actually display something
This commit is contained in:
parent
34ae98a912
commit
e35b578120
20
Dockerfile
20
Dockerfile
@ -1,15 +1,11 @@
|
||||
FROM node:latest
|
||||
# Use the official Nginx image from the Docker Hub
|
||||
FROM nginx:alpine
|
||||
|
||||
# Create app directory
|
||||
WORKDIR /usr/src/app
|
||||
# Copy the static website file into the Nginx server directory
|
||||
COPY index.html /usr/share/nginx/html/index.html
|
||||
|
||||
# Install app dependencies
|
||||
# Expose port 80
|
||||
EXPOSE 80
|
||||
|
||||
# If you also need http-server globally
|
||||
RUN npm install -g http-server
|
||||
|
||||
# Bundle app source
|
||||
COPY . .
|
||||
|
||||
EXPOSE 8080
|
||||
CMD ["http-server", "-p 8080"]
|
||||
# Start Nginx and keep it running in the foreground
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
||||
9
index.html
Normal file
9
index.html
Normal file
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Hello World</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello world</h1>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Reference in New Issue
Block a user