Skip to content

Commit

Permalink
fix low memory error
Browse files Browse the repository at this point in the history
  • Loading branch information
romer8 committed Nov 1, 2024
1 parent bafd333 commit f653ddf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ RUN cd ${TETHYS_HOME}/apps/ngiab && \
micromamba remove pyarrow && micromamba install --yes -c conda-forge pyarrow && \
micromamba clean --all --yes && \
npm install && npm run build && \
tethys install -d -N -w
tethys install -d -N -w && \
rm -rf node_modules

#########
# PORTS #
Expand Down
2 changes: 2 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ salt-call --local state.apply


echo_status "Fixing permissions"

chown -R www: /usr/lib/tethys
chown -R www: /var/lib/tethys_persist
chown -R www: /var/log/tethys
chmod -R 777 /var/lib/nginx

echo_status "Starting supervisor"

Expand Down

0 comments on commit f653ddf

Please sign in to comment.