Skip to content

Commit

Permalink
Fix sql build
Browse files Browse the repository at this point in the history
  • Loading branch information
deniscostadsc committed Sep 27, 2023
1 parent ca4e804 commit d36e63d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .docker/sql.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
FROM postgres:9.4.19
FROM postgres:9.4.19-alpine

ENV PGPASSWORD beecrowd

RUN mkdir /code
WORKDIR /code

# Got this hack here: https://stackoverflow.com/a/63300637
RUN rm -rf /etc/apt/sources.list.d/pgdg.list
RUN apt update && apt install -y --force-yes wget
RUN apk add wget

RUN cd /bin && \
wget https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh && \
Expand Down
1 change: 0 additions & 1 deletion scripts/run-problems.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ for language in $LANGUAGES; do
USER="$(id -u):$(id -g)" \
docker-compose \
-f .docker/sql-docker-compose.yml \
--log-level ERROR \
up \
--build \
--quiet-pull \
Expand Down

0 comments on commit d36e63d

Please sign in to comment.