aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-05-31 01:06:24 +0000
committerFuwn <[email protected]>2024-05-31 01:06:24 +0000
commit176395164558dd5a403dce2db412765c2d1c1815 (patch)
treee8f90f7813a13effd4f4bdff986f74388a218a37 /Dockerfile
parentdocs(mayu): bump mayu to 0.1.5 (diff)
downloadmayu-176395164558dd5a403dce2db412765c2d1c1815.tar.xz
mayu-176395164558dd5a403dce2db412765c2d1c1815.zip
build(docker): switch to earthly builder
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index c753c9e..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,25 +0,0 @@
-FROM ghcr.io/gleam-lang/gleam:v1.2.0-erlang-alpine as builder
-
-WORKDIR /mayu/
-
-COPY src/ /mayu/src/
-COPY themes/ /mayu/themes/
-COPY gleam.toml /mayu/
-COPY manifest.toml /mayu/
-
-RUN apk add --no-cache build-base
-
-RUN gleam build \
- && cd build/ \
- && gleam export erlang-shipment
-
-FROM ghcr.io/gleam-lang/gleam:v1.2.0-erlang-alpine
-
-COPY --from=builder /mayu/build/erlang-shipment/ /mayu/erlang-shipment/
-COPY --from=builder /mayu/themes /mayu/themes/
-
-WORKDIR /mayu/
-
-ENTRYPOINT ["./erlang-shipment/entrypoint.sh"]
-
-CMD ["run"]