Compare commits

...

2 Commits

Author SHA1 Message Date
Jason Williams
258f82720c Moving local development server files to their own folder 2025-01-03 14:13:57 -07:00
Jason Williams
972ad27df2 Renaming /app to /www 2025-01-03 13:50:25 -07:00
17 changed files with 10 additions and 7 deletions

View File

@@ -2,6 +2,7 @@
"schemaVersion": 2, "schemaVersion": 2,
"dockerfileLines": [ "dockerfileLines": [
"FROM lipanski/docker-static-website", "FROM lipanski/docker-static-website",
"COPY ./app ." "COPY httpd.conf httpd.conf",
"COPY ./www /www"
] ]
} }

View File

@@ -1,4 +0,0 @@
# Script used to spin up a local webserver for development
#!/bin/bash
podman run -it --rm --init -p 3000:3000 $(podman build -q .)

View File

@@ -1 +1 @@
H:/app H:/www

View File

@@ -1,3 +1,3 @@
FROM docker.io/lipanski/docker-static-website FROM docker.io/lipanski/docker-static-website
COPY httpd.conf httpd.conf COPY httpd.conf httpd.conf
COPY ./app /app COPY ./www /www

View File

@@ -0,0 +1,6 @@
# Script used to spin up a local webserver for development
#!/bin/bash
CURR_DIR="$(pwd)"
cd ${PWD}/..
podman run -it --rm --init -p 3000:3000 $(podman build -q -f ./local-test/Dockerfile .)

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 73 KiB

View File

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

View File

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 31 KiB

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 126 KiB

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB