We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa593c6 commit b555996Copy full SHA for b555996
Dockerfile
@@ -1,11 +1,10 @@
1
-FROM hexpm/elixir:1.13.4-erlang-25.0-ubuntu-focal-20211006
+FROM hexpm/elixir:1.16.2-erlang-26.1.2-alpine-3.16.9
2
3
-# Install debian packages
4
-RUN apt-get update
5
-RUN apt-get install --yes build-essential inotify-tools postgresql-client
6
-RUN apt-get install --yes git
+RUN apk --update add postgresql-client
+RUN apk add git
+RUN apk add bash
7
8
RUN mix local.hex --force
9
RUN mix local.rebar --force
10
11
-WORKDIR /app
+WORKDIR /app
docker-compose.yml
@@ -1,7 +1,7 @@
version: "3.2"
services:
db:
- image: postgres
+ image: postgres:alpine
environment:
- POSTGRES_HOST_AUTH_METHOD=trust
code:
0 commit comments