fs1/Dockerfile
jordan 7490a26721
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed
ci/woodpecker/push/woodpecker Pipeline is running
Initialize project from default template
2026-01-31 06:07:46 +00:00

10 lines
181 B
Docker

# Default Dockerfile - replace with your application
FROM nginx:alpine
# Copy static files or your app
COPY . /usr/share/nginx/html/
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]