alessandro trinca tornidor commited on
Commit
cf53970
·
1 Parent(s): 29d4b23

ci: docker, remove --no-cache option from apt command

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -107,7 +107,7 @@ RUN ls -ld ${LAMBDA_TASK_ROOT}/.venv
107
  RUN ls -lA ${LAMBDA_TASK_ROOT}/.venv
108
  RUN ls -lA ${LAMBDA_TASK_ROOT}/docker_entrypoint.sh
109
  RUN ls -lA ${LAMBDA_TASK_ROOT}/entrypoint.sh
110
- RUN apt update && apt install --no-cache nodejs -y
111
  RUN which node
112
  RUN which npm
113
 
 
107
  RUN ls -lA ${LAMBDA_TASK_ROOT}/.venv
108
  RUN ls -lA ${LAMBDA_TASK_ROOT}/docker_entrypoint.sh
109
  RUN ls -lA ${LAMBDA_TASK_ROOT}/entrypoint.sh
110
+ RUN apt update && apt install nodejs -y && apt clean
111
  RUN which node
112
  RUN which npm
113