This repository has been archived on 2024-05-13. You can view files and clone it, but cannot push or open issues or pull requests.
share2fedi/Dockerfile
2024-03-03 02:23:57 -05:00

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