Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Apr 28, 2024
2 parents e407765 + 8cb17bf commit 1af2390
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
otp: '25.2.2'
elixir: '1.14.3'
node: '18.x'
rust: '1.68.0'
rust: '1.71.0'

jobs:
test:
Expand All @@ -35,6 +35,7 @@ jobs:

env:
MIX_ENV: test
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ COPY --from=builder /opt/app/_build/prod/rel/asciinema .
RUN chgrp -R 0 /opt/app && chmod -R g=u /opt/app
COPY .iex.exs .

ENV PORT 4000
ENV ADMIN_BIND_ALL 1
ENV DATABASE_URL "postgresql://postgres@postgres/postgres"
ENV RSVG_FONT_FAMILY "Dejavu Sans Mono"
ENV PATH "/opt/app/bin:${PATH}"
ENV PORT=4000 \
ADMIN_BIND_ALL=1 \
DATABASE_URL=postgresql://postgres@postgres/postgres \
RSVG_FONT_FAMILY="Dejavu Sans Mono" \
PATH=/opt/app/bin:${PATH}

ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/opt/app/bin/server"]
Expand Down

0 comments on commit 1af2390

Please sign in to comment.