foundary-test-1770625554/Dockerfile
jordan b3ac0299d3
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline failed
Initialize project from default template
2026-02-09 08:26:52 +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;"]