This commit is contained in:
Rizky 2024-01-22 01:43:50 +07:00
parent fad55eb470
commit e1a1a57cd4
2 changed files with 2 additions and 8 deletions

View File

@ -2,6 +2,8 @@ FROM oven/bun:1.0.18-debian as base
WORKDIR /app/prasi/repo
COPY . .
RUN ls /app/prasi/data
RUN apt-get update
RUN apt-get install git curl gnupg zip unzip -yq
RUN git config --global --add safe.directory /app/prasi/repo

View File

@ -1,8 +0,0 @@
Bun.serve({
port: 4550,
fetch(request, server) {
return new Response("Hello World\n\n" + process.cwd(), {
status: 200,
});
},
});