-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atualizações para rodar no Ubuntu 24.04. Adicionado Dockerfile para f…
…acilitar execução (#300) * Atualizações para rodar no Ubuntu 24.04. Adicionado Dockerfile para facilitar a configuração * Adicionando as altearações do README
- Loading branch information
Showing
6 changed files
with
56 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM ubuntu:24.04 | ||
|
||
RUN mkdir -p /home/wiki | ||
COPY . /home/wiki | ||
WORKDIR /home/wiki | ||
RUN bash install_os_dependencies.sh install | ||
RUN python3 -m venv /opt/venv | ||
RUN /opt/venv/bin/python3 -m pip install -r requirements.txt | ||
ENV PATH="/opt/venv/bin:$PATH" | ||
CMD ["/bin/bash", "develop_server.sh", "docker_start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters