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

24 lines
359 B
Docker
Raw Normal View History

2024-01-30 11:02:33 -05:00
## To build the image, run:
## docker build -t fluxnodes.net .
## To run the image, run:
## docker run -d -p 2000:2000 fluxnodes.net
# Base (Debian)
FROM debian
# Set Work Directory
WORKDIR /fluxnodes
COPY . /fluxnodes
# Expose Ports
EXPOSE 2000
# Install Bun
curl -fsSL https://bun.sh/install | bash
# Install Packages
bun install
# Run
CMD bun start