This repository has been archived on 2025-04-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Contour/Dockerfile
2024-09-05 00:39:25 -04:00

18 lines
No EOL
219 B
Docker
Executable file

# Base (Debian)
FROM debian
# Set Work Directory
WORKDIR /contour
COPY . /contour
# Expose Ports
EXPOSE 2000
# Install Bun
curl -fsSL https://bun.sh/install | bash
# Install Packages
bun install
# Run
CMD bun start