forked from superdesk/superdesk-client-core
-
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.
Merge branch 'develop' into templates-e2e-test
- Loading branch information
Showing
38 changed files
with
203 additions
and
123 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
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
Binary file added
BIN
+866 Bytes
e2e/client/test-results/user-management-creating-a-new-user-chromium/trace.zip
Binary file not shown.
Binary file added
BIN
+864 Bytes
e2e/client/test-results/user-profile-switching-system-language-chromium/trace.zip
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,14 +1,38 @@ | ||
FROM python:3.10 | ||
FROM ubuntu:22.04 | ||
|
||
ADD requirements.txt . | ||
RUN pip3 install -U pip wheel setuptools | ||
RUN pip3 install -r requirements.txt | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
WORKDIR /opt/superdesk | ||
COPY . /opt/superdesk | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
python3 python3-dev python3-pip python3-venv git gcc curl \ | ||
# lxml | ||
libxml2-dev libxslt-dev \ | ||
# xmlsec | ||
pkg-config libxml2-dev libxmlsec1-dev libxmlsec1-openssl \ | ||
# PIL | ||
libjpeg-dev zlib1g-dev \ | ||
# magic | ||
libmagic-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
EXPOSE 5000 | ||
EXPOSE 5100 | ||
# setup venv | ||
ENV VIRTUAL_ENV=/opt/venv | ||
RUN python3 -m venv "$VIRTUAL_ENV" | ||
ENV PATH="$VIRTUAL_ENV/bin:$PATH" | ||
|
||
# update venv | ||
RUN python3 -m pip install -U pip wheel setuptools | ||
|
||
# install server | ||
WORKDIR /opt/superdesk/ | ||
COPY requirements.txt . | ||
RUN python3 -m pip install -Ur requirements.txt | ||
|
||
ENV PYTHONUNBUFFERED=1 | ||
ENV C_FORCE_ROOT=False | ||
ENV CELERYBEAT_SCHEDULE_FILENAME=/tmp/celerybeatschedule.db | ||
ENV TZ=Europe/Prague | ||
|
||
COPY . . | ||
|
||
ENTRYPOINT ["honcho"] | ||
CMD ["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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
scripts/apps/authoring-react/authoring-section/authoring-section-field.tsx
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
2 changes: 1 addition & 1 deletion
2
scripts/apps/authoring-react/authoring-section/authoring-section.tsx
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
Oops, something went wrong.