18 lines
No EOL
216 B
Docker
18 lines
No EOL
216 B
Docker
# Base
|
|
FROM oven/bun
|
|
|
|
# Set Work Directory
|
|
WORKDIR /share
|
|
COPY . /share
|
|
|
|
# Expose Ports
|
|
EXPOSE 1933
|
|
|
|
# Disable Astro Telemtry
|
|
RUN bunx astro telemetry disable
|
|
|
|
# Install Packages
|
|
RUN bun i
|
|
|
|
# Run
|
|
CMD bun start --host |