Docker
Dockerfile
# pull down the pode image
FROM badgerati/pode
# copy over the local files to the container
COPY . /usr/src/app/
# expose the port
EXPOSE 8085
# run the server
CMD [ "pwsh", "-c", "cd /usr/src/app; ./web-pages-docker.ps1" ]Build and Run
Last updated