diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 99f2415..0000000 --- a/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM docker.io/nginx:1-alpine -COPY nginx.conf /etc/nginx/conf.d/default.conf -COPY ./www /www \ No newline at end of file diff --git a/captain-definition b/captain-definition deleted file mode 100644 index 04859b5..0000000 --- a/captain-definition +++ /dev/null @@ -1,4 +0,0 @@ -{ - "schemaVersion": 2, - "dockerfilePath": "./Dockerfile" -} \ No newline at end of file diff --git a/local-test.sh b/local-test.sh deleted file mode 100644 index 2556f96..0000000 --- a/local-test.sh +++ /dev/null @@ -1,4 +0,0 @@ -# Script used to spin up a local webserver for development & testing - -#!/bin/bash -podman run -it --rm -p 3000:80 $(podman build -q .) \ No newline at end of file diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index fc39fec..0000000 --- a/nginx.conf +++ /dev/null @@ -1,14 +0,0 @@ -server { - listen 80; - root /www; - - location / { - index index.html; - try_files $uri /index.html; - } - - location /lucy { - index index.html; - try_files $uri /lucy.html; - } -} \ No newline at end of file