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

18 lines
216 B
Docker
Raw Permalink Normal View History

2024-03-03 02:23:57 -05:00
# 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