1
0
mirror of https://github.com/s427/MARL.git synced 2025-01-19 05:21:30 +01:00

Merge pull request #2 from s0llvan/main

feature: add initial Dockerfile
This commit is contained in:
s427 2024-11-30 23:17:32 +01:00 committed by GitHub
commit ad2acec1a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM nginx:latest
COPY index.html /usr/share/nginx/html/
COPY css/ /usr/share/nginx/html/css/
COPY js/ /usr/share/nginx/html/js/
COPY img/ /usr/share/nginx/html/img/
COPY svg/ /usr/share/nginx/html/svg/
EXPOSE 80