Commit eb85184 1 parent ba72b8f commit eb85184 Copy full SHA for eb85184
File tree 3 files changed +5
-8
lines changed
3 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,7 @@ RUN apt-get update \
10
10
tini \
11
11
bash \
12
12
netcat-traditional \
13
- libffi-dev \
14
13
git \
15
- gcc \
16
- libc6-dev \
17
14
&& apt-get clean
18
15
19
16
WORKDIR /rodhaj
@@ -42,4 +39,4 @@ STOPSIGNAL SIGTERM
42
39
LABEL org.opencontainers.image.title="Rodhaj"
43
40
LABEL org.opencontainers.image.description="A discord modmail bot"
44
41
LABEL org.opencontainers.image.licenses="Apache-2.0"
45
- LABEL org.opencontainers.image.source="https://github.com/transprogrammer/rodhaj"
42
+ LABEL org.opencontainers.image.source="https://github.com/transprogrammer/rodhaj"
Original file line number Diff line number Diff line change 1
- FROM postgres:15
2
- COPY /init.sh /docker-entrypoint-initdb.d/
1
+ FROM postgres:16
2
+ COPY /init.sh /docker-entrypoint-initdb.d/
Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
psql -v ON_ERROR_STOP=1 --username " $POSTGRES_USER " --dbname " $POSTGRES_DB " << -EOSQL
5
- CREATE ROLE rodhaj WITH LOGIN PASSWORD " $RODHAJ_PASSWORD " ;
5
+ CREATE ROLE rodhaj WITH LOGIN PASSWORD ' $RODHAJ_PASSWORD ' ;
6
6
CREATE DATABASE rodhaj OWNER rodhaj;
7
- EOSQL
7
+ EOSQL
You can’t perform that action at this time.
0 commit comments