Initial version
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
FROM oven/bun:0.8.1
|
||||
|
||||
RUN apt update -y && \
|
||||
apt full-upgrade -y && \
|
||||
apt install -y --no-install-recommends git && \
|
||||
apt autoremove -y --purge && \
|
||||
apt clean
|
||||
|
||||
COPY ./ ./
|
||||
RUN bun install --production --frozen-lockfile --no-cache && \
|
||||
rm -rf ~/.bun
|
||||
ENTRYPOINT ["bun", "start", "/drone/src"]
|
||||
Reference in New Issue
Block a user