-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Dockerfile
33 lines (26 loc) · 899 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM alpine:3.12 AS permissions-giver
# Make sure docker-entrypoint.sh is executable, regardless of the build host.
WORKDIR /out
COPY docker-entrypoint.sh .
RUN chmod +x docker-entrypoint.sh
FROM alpine:3.12 AS organizer
# Installation files
WORKDIR /out/usr/src/install
COPY src src
COPY mod.ts .
COPY deps.ts .
# Default configuration
WORKDIR /out/pagic
RUN echo "export default {};" > pagic.config.ts
FROM hayd/alpine-deno:latest AS runner
COPY --from=organizer /out /
# Install
WORKDIR /usr/src/install
ENV PATH "/root/.deno/bin:$PATH"
RUN deno install --unstable --allow-read --allow-write --allow-net --allow-env --allow-run --name=pagic mod.ts \
# Install dependencies
&& deno cache --unstable $(find src -name "*.ts*" ! -name "*_test.ts*")
WORKDIR /pagic
COPY --from=permissions-giver /out/docker-entrypoint.sh /usr/local/bin
ENTRYPOINT [ "docker-entrypoint.sh" ]
CMD [ "build" ]