Merge pull request #3188 from labcodes/issue-3187

Move ARG PYTHON_VERSION=3.9-slim-buster to the global scope
This commit is contained in:
Fábio C. Barrionuevo da Luz 2021-05-18 13:55:52 -03:00 committed by GitHub
commit 24cb00e13b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,5 @@
ARG PYTHON_VERSION=3.9-slim-buster
{% if cookiecutter.js_task_runner == 'Gulp' -%}
FROM node:10-stretch-slim as client-builder
@ -11,8 +13,6 @@ RUN npm run build
{%- endif %}
ARG PYTHON_VERSION=3.9-slim-buster
# define an alias for the specfic python version used in this file.
FROM python:${PYTHON_VERSION} as python