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

18 lines
219 B
Text
Raw Normal View History

2024-01-30 11:02:33 -05:00
# Base (Debian)
FROM debian
# Set Work Directory
2024-09-05 00:39:25 -04:00
WORKDIR /contour
COPY . /contour
2024-01-30 11:02:33 -05:00
# Expose Ports
EXPOSE 2000
# Install Bun
curl -fsSL https://bun.sh/install | bash
# Install Packages
bun install
# Run
CMD bun start