File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ ENV LIBRARY_PATH=/lib:/usr/lib LD_LIBRARY_PATH=/lib:/usr/lib
7272
7373RUN apt-get update -y && apt-get install -y curl
7474
75- RUN groupadd -r app && useradd -r -g app app && mkdir -p ${FUNCTION_DIR} && chown -R app:app ${FUNCTION_DIR}
75+ RUN groupadd -r app && useradd -r -g app app && mkdir -p ${FUNCTION_DIR} && chown -R app:app ${FUNCTION_DIR} && mkdir -p /tmp/pycon && chown -R app:app /tmp/pycon
7676
7777COPY --chown=app:app --from=js-stage ${FUNCTION_DIR}/dist/*.html ${FUNCTION_DIR}/custom_admin/templates/astro/
7878COPY --chown=app:app --from=js-stage ${FUNCTION_DIR}/dist/widgets/*.html ${FUNCTION_DIR}/custom_admin/templates/astro/widgets/
Original file line number Diff line number Diff line change @@ -55,8 +55,6 @@ def __init__(
5555 self .merged_file = None
5656
5757 def run (self ) -> list [str ]:
58- os .makedirs ("/tmp/pycon/" , exist_ok = True )
59-
6058 self .storage = storages ["default" ]
6159 self .s3_client = self ._get_s3_client ()
6260 self .download_link = self .get_download_link ()
You can’t perform that action at this time.
0 commit comments