mirror of
https://github.com/Myzel394/amiopen.now.git
synced 2025-06-18 15:35:27 +02:00
13 lines
121 B
Docker
13 lines
121 B
Docker
FROM oven/bun
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN bun install --production
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["bun", "run", "start"]
|
|
|