🗑️ Remove unused and archived files across multiple directories and update project dependencies in package files
This commit is contained in:
11
code/websites/pokedex.online/apps/Dockerfile
Normal file
11
code/websites/pokedex.online/apps/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
# Use nginx alpine for lightweight serving
|
||||
FROM nginx:alpine
|
||||
|
||||
# Copy website files to nginx html directory
|
||||
COPY index.html /usr/share/nginx/html/
|
||||
|
||||
# Expose ports 80 (HTTP) and 443 (HTTPS)
|
||||
EXPOSE 80 443
|
||||
|
||||
# Start nginx
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
Reference in New Issue
Block a user