Archived
Template
1
Fork 0
This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
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-04 23:39:25 -05: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