Skip to content

Commit 1af2390

Browse files
committed
Merge branch 'develop'
2 parents e407765 + 8cb17bf commit 1af2390

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
otp: '25.2.2'
1515
elixir: '1.14.3'
1616
node: '18.x'
17-
rust: '1.68.0'
17+
rust: '1.71.0'
1818

1919
jobs:
2020
test:
@@ -35,6 +35,7 @@ jobs:
3535

3636
env:
3737
MIX_ENV: test
38+
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
3839

3940
steps:
4041
- uses: actions/checkout@v3

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ COPY --from=builder /opt/app/_build/prod/rel/asciinema .
7171
RUN chgrp -R 0 /opt/app && chmod -R g=u /opt/app
7272
COPY .iex.exs .
7373

74-
ENV PORT 4000
75-
ENV ADMIN_BIND_ALL 1
76-
ENV DATABASE_URL "postgresql://postgres@postgres/postgres"
77-
ENV RSVG_FONT_FAMILY "Dejavu Sans Mono"
78-
ENV PATH "/opt/app/bin:${PATH}"
74+
ENV PORT=4000 \
75+
ADMIN_BIND_ALL=1 \
76+
DATABASE_URL=postgresql://postgres@postgres/postgres \
77+
RSVG_FONT_FAMILY="Dejavu Sans Mono" \
78+
PATH=/opt/app/bin:${PATH}
7979

8080
ENTRYPOINT ["/sbin/tini", "--"]
8181
CMD ["/opt/app/bin/server"]

0 commit comments

Comments
 (0)