18 lines
216 B
Text
18 lines
216 B
Text
|
# 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
|