-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
90 changed files
with
579 additions
and
324 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-62.8 KB
prof/test_get_user_destinations_by_non_existent_discord_user_id.prof
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,26 +1,21 @@ | ||
# FROM python:3.11-slim-bullseye | ||
FROM python:3.11-alpine | ||
|
||
# RUN apt update | ||
# RUN apt install -y pkg-config default-libmysqlclient-dev build-essential | ||
RUN apk update && apk add --no-cache \ | ||
gcc \ | ||
musl-dev \ | ||
libffi-dev \ | ||
openssl-dev \ | ||
mariadb-dev \ | ||
build-base | ||
|
||
# WORKDIR /src/filman_crawler | ||
|
||
# COPY requirements.txt requirements.txt | ||
# RUN pip3 install -r requirements.txt | ||
|
||
# COPY /src/filman_crawler . | ||
|
||
# ENV PYTHONPATH=/src | ||
|
||
# CMD [ "python3", "-m", "filman_crawler.main"] | ||
|
||
FROM python:3.11-slim-bullseye | ||
RUN apt update | ||
RUN apt install -y pkg-config default-libmysqlclient-dev build-essential | ||
WORKDIR /src | ||
|
||
COPY requirements.txt requirements.txt | ||
RUN pip3 install -r requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
COPY /src/filman_server /src/filman_server | ||
COPY /src/filman_crawler /src/filman_crawler | ||
|
||
ENV PYTHONPATH=/src/filman_server:/src/filman_crawler | ||
|
||
CMD [ "python3", "-m", "filman_crawler.main" ] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
FROM python:3.11-slim-bullseye | ||
FROM python:3.11-alpine | ||
|
||
RUN apt update | ||
RUN apt install -y pkg-config default-libmysqlclient-dev build-essential | ||
RUN apk update && apk add --no-cache \ | ||
gcc \ | ||
musl-dev \ | ||
libffi-dev \ | ||
openssl-dev \ | ||
mariadb-dev \ | ||
build-base | ||
|
||
WORKDIR /src/filman_server | ||
|
||
COPY requirements.txt requirements.txt | ||
RUN pip3 install -r requirements.txt | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
COPY /src/filman_server . | ||
|
||
ENV PYTHONPATH=/src | ||
|
||
CMD [ "python3", "-m", "filman_server.main" ] | ||
CMD ["python3", "-m", "filman_server.main"] |
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
Oops, something went wrong.