Korbs/Contour
Archived
Template
1
Fork 0
This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
Contour/Dockerfile
Korbs 2bf0a5b5ea 🚀 Init
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