Switching docker image

This commit is contained in:
Jason Williams
2025-01-02 09:45:13 -07:00
parent 83c96a6958
commit 8098e18713

View File

@@ -1,8 +1,8 @@
{
"schemaVersion": 2,
"dockerfileLines": [
"FROM socialengine/nginx-spa:latest",
"COPY ./app /app",
"RUN chmod -R 777 /app"
"FROM lipanski/docker-static-website",
"COPY ./app .",
"CMD ['busybox', 'httpd', '-f', '-v', '-p', '80', '-c', 'httpd.conf']"
]
}