Files
RandomInstance/Dockerfile
T
Odyssey 2e96148246 Fix docker
Signed-off-by: Odyssey <hi@odyssey346.dev>
2023-04-03 22:04:33 +02:00

16 lines
345 B
Docker

# 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
ENV DOCKER=true
# run the server
CMD [ "pwsh", "-c", "cd /usr/src/app; ./server.ps1" ]