-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathEarthfile
73 lines (58 loc) · 2.01 KB
/
Earthfile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
VERSION 0.7
deps:
FROM ../../+rust-toolchain
build:
FROM +deps
# Build refinery
RUN cargo install refinery_cli --version 0.8.14 --locked --root .
SAVE ARTIFACT ./bin/refinery refinery
SAVE IMAGE --cache-hint
package:
FROM debian:stable-slim
ARG tag="latest"
ARG data="historic"
WORKDIR /eventdb
# Add psql
RUN apt-get update && apt-get install -y --no-install-recommends \
wget \
gnupg2 \
ca-certificates \
lsb-release \
apt-transport-https \
&& rm -rf /var/lib/apt/lists/* && \
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \
apt-get update && \
apt-get install -y --no-install-recommends postgresql-14 && \
apt-get remove -y wget gnupg2 lsb-release apt-transport-https && \
apt-get autoremove -y && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# Add refinery
COPY +build/refinery .
# Add migrations
COPY --dir ../../src/event-db+build/setup ./setup
COPY --dir ../../src/event-db+build/migrations ./migrations
IF [ "$data" = "historic" ]
COPY --dir ../../src/event-db+build/historic_data ./historic_data
COPY ../../src/event-db+build/stage_data ./stage_data
ELSE IF [ "$data" = "test" ]
COPY --dir ../../src/event-db+build/test_data ./test_data
END
COPY ../../src/event-db+build/refinery.toml .
VOLUME /eventdb/tmp
COPY ./entry.sh .
RUN chmod ugo+x ./entry.sh
ENTRYPOINT ["./entry.sh"]
SAVE IMAGE migrations:$tag
# TODO: Enable this when CI supports passing -P dynamically
# test:
# FROM earthly/dind:alpine
# WITH DOCKER \
# --load test:latest=+docker
# RUN docker run test:latest
# END
docker:
FROM +package
ARG container='migrations'
ARG tag="latest"
SAVE IMAGE ${container}:${tag}