mirror of
https://github.com/cupcakearmy/gitea-sync.git
synced 2024-12-22 08:06:25 +00:00
12 lines
263 B
Docker
12 lines
263 B
Docker
FROM denoland/deno AS builder
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN deno install --frozen
|
|
RUN deno compile --allow-net --allow-env --no-prompt --output /app/sync ./src/index.ts
|
|
|
|
FROM debian:stable-slim
|
|
WORKDIR /app
|
|
COPY --from=builder /app/sync .
|
|
ENTRYPOINT [ "/app/sync" ]
|