testfs/Dockerfile
jordan 6924f9aea1
Some checks are pending
ci/woodpecker/manual/woodpecker Pipeline is pending
ci/woodpecker/push/woodpecker Pipeline is pending
Initialize project from default template
2026-01-31 07:47:21 +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;"]