Initial commit

Signed-off-by: Odyssey <hi@odyssey346.dev>
This commit is contained in:
Odyssey
2023-04-03 20:10:55 +02:00
commit 8cc7ff1523
5 changed files with 292 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# pull down the pode image
FROM badgerati/pode:latest-alpine
# or use the following for GitHub
# FROM docker.pkg.github.com/badgerati/pode/pode:latest-alpine
# copy over the local files to the container
COPY . /usr/src/app/
# expose the port
EXPOSE 8080
# run the server
CMD [ "pwsh", "-c", "cd /usr/src/app; ./server.ps1" ]