Compare commits

...

1 Commits

Author SHA1 Message Date
Daddy32
393812210a Add Docker deployment files 2026-01-05 09:49:08 +01:00
4 changed files with 18 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
COPY styles.css /usr/share/nginx/html/styles.css
COPY assets /usr/share/nginx/html/assets
COPY src /usr/share/nginx/html/src

4
captain-definition Normal file
View File

@@ -0,0 +1,4 @@
{
"schemaVersion": 2,
"dockerfilePath": "./Dockerfile"
}

4
scripts/build.sh Normal file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
sudo docker build -t physilinks .

4
scripts/run.sh Normal file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
sudo docker run --rm -p 8080:80 physilinks