Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ci image #113

Merged
merged 2 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# lila-docker

[![Publish CI image](https://github.com/lichess-org/lila-docker/actions/workflows/ci-image.yml/badge.svg)](https://github.com/lichess-org/lila-docker/actions/workflows/ci-image.yml)

Lichess development environment using Docker Compose, for developing on Mac, Linux, or Windows (via WSL).

The only requirements for running on your local machine are `git` and Docker Desktop. All the other dependencies (Scala, MongoDB, Node.js, etc) are installed and run in Docker containers.
Expand Down
2 changes: 1 addition & 1 deletion docker/ci.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN /lila/ui/build --clean-build --debug
##################################################################################
FROM mongo:7-jammy AS dbbuilder

RUN apt update && apt install -y python3-pip curl && apt clean
RUN apt update && apt install -y python3-pip python3-venv curl && apt clean
RUN pip3 install pymongo requests

ENV JAVA_HOME=/opt/java/openjdk
Expand Down