Compare commits
2 Commits
f30929f781
...
258f82720c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
258f82720c | ||
|
|
972ad27df2 |
@@ -2,6 +2,7 @@
|
||||
"schemaVersion": 2,
|
||||
"dockerfileLines": [
|
||||
"FROM lipanski/docker-static-website",
|
||||
"COPY ./app ."
|
||||
"COPY httpd.conf httpd.conf",
|
||||
"COPY ./www /www"
|
||||
]
|
||||
}
|
||||
@@ -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 .)
|
||||
@@ -1 +1 @@
|
||||
H:/app
|
||||
H:/www
|
||||
@@ -1,3 +1,3 @@
|
||||
FROM docker.io/lipanski/docker-static-website
|
||||
COPY httpd.conf httpd.conf
|
||||
COPY ./app /app
|
||||
COPY ./www /www
|
||||
6
local-test/start-server.sh
Normal 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 .)
|
||||
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 73 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 33 KiB |
|
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |