Some checks reported errors
continuous-integration/drone Build encountered an error
14 lines
No EOL
337 B
Docker
14 lines
No EOL
337 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy web files to nginx
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY styles.css /usr/share/nginx/html/
|
|
COPY script.js /usr/share/nginx/html/
|
|
COPY translations.js /usr/share/nginx/html/
|
|
COPY translations/ /usr/share/nginx/html/translations/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"] |