10 lines
181 B
Docker
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;"]
|