Revert "feat: make website actually display something"

This reverts commit e35b578120.
This commit is contained in:
Krzysztof R. 2024-05-12 14:15:53 +02:00
parent e35b578120
commit 1adf3ef501
2 changed files with 12 additions and 17 deletions

View File

@ -1,11 +1,15 @@
# Use the official Nginx image from the Docker Hub
FROM nginx:alpine
FROM node:latest
# Copy the static website file into the Nginx server directory
COPY index.html /usr/share/nginx/html/index.html
# Create app directory
WORKDIR /usr/src/app
# Expose port 80
EXPOSE 80
# Install app dependencies
# Start Nginx and keep it running in the foreground
CMD ["nginx", "-g", "daemon off;"]
# If you also need http-server globally
RUN npm install -g http-server
# Bundle app source
COPY . .
EXPOSE 8080
CMD ["http-server", "-p 8080"]

View File

@ -1,9 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello world</h1>
</body>
</html>