Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e3c09a3
More general exception in views.py
Didayolo Jul 4, 2024
e1d8bc6
Update views.py
Didayolo Jul 4, 2024
545d5ca
Remove Dockerfile.celery
Didayolo Jul 9, 2024
1d2eda7
Merge pull request #1518 from codalab/remove-celery-dockerfile
Didayolo Jul 9, 2024
14c845e
show leaderboard and detailed result page to approved participants
ihsaan-ullah Jul 12, 2024
b6cadb7
detailed resutls test updated
ihsaan-ullah Jul 12, 2024
aa6a19a
precision column and leaderboard rule added to dump
ihsaan-ullah Jul 13, 2024
7fb6998
programs and datasets bug fixed
ihsaan-ullah Jul 13, 2024
71e7eb3
if condition format fixed
ihsaan-ullah Jul 13, 2024
8059896
public competitions: participants count added
ihsaan-ullah Jul 13, 2024
98486d2
Double the soft time limit on the storage analytics snapshop task
OhMaley Jul 15, 2024
2c0cfb3
show in-use for starting kit and public data
ihsaan-ullah Jul 16, 2024
4f48ccc
Merge pull request #1529 from codalab/public_participants
Didayolo Jul 16, 2024
d6287a9
Add question mark on auto migrate
Didayolo Jul 16, 2024
d34edd5
Merge pull request #1536 from codalab/migrate-doc
Didayolo Jul 16, 2024
5f4673e
Merge pull request #1533 from codalab/starting_kit
Didayolo Jul 16, 2024
a6f92a7
Merge pull request #1525 from codalab/dump
Didayolo Jul 16, 2024
729ee01
Merge pull request #1531 from OhMaley/fix/storage/analytics-task-time…
Didayolo Jul 17, 2024
b398385
Downloading submissions witha stream v1
nicomy Jul 17, 2024
a0bb8d4
test fixed
ihsaan-ullah Jul 17, 2024
ae2f48a
unregistered participant handled
ihsaan-ullah Jul 18, 2024
6beee48
removed console prints, and files.length condition updated to not pri…
ihsaan-ullah Jul 18, 2024
4378b90
updated toml file with python version and bpython version, deleted lo…
ihsaan-ullah Jul 18, 2024
da12bd8
Merge pull request #1524 from codalab/detailed_results
Didayolo Jul 18, 2024
314afed
Merge pull request #1539 from codalab/console_prints
Didayolo Jul 18, 2024
4a6a1a5
Change base image for Dockerfile.flower (#1520)
Didayolo Jul 23, 2024
548f001
Resources bundles dumps (#1505)
ihsaan-ullah Jul 23, 2024
ecd8ed8
Merge pull request #1541 from nicomy/submissions_bulk
Didayolo Jul 23, 2024
cbf0ff2
Improve formatting
Didayolo Jul 23, 2024
f1bc022
leaderboard api 500 error resolved (#1527)
ihsaan-ullah Jul 24, 2024
0f8b802
Merge pull request #1550 from codalab/develop
Didayolo Jul 24, 2024
c112a3a
Merge pull request #1543 from codalab/shell_plus
Didayolo Jul 24, 2024
55ecb2b
Merge pull request #1548 from codalab/submission_bulk
Didayolo Jul 24, 2024
92f94d6
Merge pull request #1552 from codalab/develop
Didayolo Jul 25, 2024
baa423a
Merge pull request #1528 from codalab/programs_and_datasets
Didayolo Jul 25, 2024
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: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RUN poetry config virtualenvs.create false
RUN poetry config virtualenvs.in-project false

COPY pyproject.toml ./
COPY poetry.lock ./

RUN poetry lock
RUN poetry install

WORKDIR /app
5 changes: 0 additions & 5 deletions Dockerfile.celery

This file was deleted.

17 changes: 7 additions & 10 deletions Dockerfile.flower
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
FROM python:3.9-alpine
FROM python:3.9

# PYTHONUNBUFFERED: Force stdin, stdout and stderr to be totally unbuffered. (equivalent to `python -u`)
# PYTHONHASHSEED: Enable hash randomization (equivalent to `python -R`)
# PYTHONDONTWRITEBYTECODE: Do not write byte files to disk, since we maintain it as readonly. (equivalent to `python -B`)
ENV PYTHONUNBUFFERED=1 PYTHONHASHSEED=random PYTHONDONTWRITEBYTECODE=1

# Get latest root certificates
RUN apk add --no-cache ca-certificates && update-ca-certificates curl
RUN apk add curl
RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates

# # Install the required packages
RUN curl -sSL https://install.python-poetry.org | python3 -
Expand All @@ -18,13 +22,6 @@ RUN poetry add redis=3.0.1
RUN poetry add flower=0.9.3
RUN poetry add celery="<5.0.0"

# PYTHONUNBUFFERED: Force stdin, stdout and stderr to be totally unbuffered. (equivalent to `python -u`)
# PYTHONHASHSEED: Enable hash randomization (equivalent to `python -R`)
# PYTHONDONTWRITEBYTECODE: Do not write byte files to disk, since we maintain it as readonly. (equivalent to `python -B`)


ENV PYTHONUNBUFFERED=1 PYTHONHASHSEED=random PYTHONDONTWRITEBYTECODE=1

# Default port
EXPOSE 5555

Expand Down
Loading