🚀 Init
This commit is contained in:
commit
e0056b9cd9
26 changed files with 1560 additions and 0 deletions
18
Dockerfile
Normal file
18
Dockerfile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Base (Debian)
|
||||
FROM oven/bun:1
|
||||
|
||||
# Set Work Directory
|
||||
WORKDIR /glee-mirror
|
||||
COPY . /glee-mirror
|
||||
|
||||
# Expose Ports
|
||||
EXPOSE 4321
|
||||
|
||||
# Install Packages
|
||||
RUN bun install
|
||||
|
||||
# Buid
|
||||
RUN bun run build
|
||||
|
||||
# Run
|
||||
CMD bun preview --host
|
Loading…
Add table
Add a link
Reference in a new issue