From 57f9bfe6476b4c484931d309ffebb7dc4ed9a260 Mon Sep 17 00:00:00 2001 From: shyanukant rathi Date: Sat, 29 Jul 2023 13:45:00 +0530 Subject: [PATCH] update dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2bd1ce39..30c74cf5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -EXPOSE $PORT +EXPOSE ${PORT} -CMD ["gunicorn", "squib.wsgi:application", "--bind", "0.0.0.0:$PORT"] \ No newline at end of file +CMD ["gunicorn", "squib.wsgi:application", "--bind", "0.0.0.0:${PORT}"] \ No newline at end of file