diff --git a/.dockerignore b/.dockerignore index fc5dd48..a24bc62 100644 --- a/.dockerignore +++ b/.dockerignore @@ -7,6 +7,6 @@ compose __pycache__ db.sqlite3 projects -Dockerfile +Containerfile staticfiles/ kaplancloudapp/projects diff --git a/Dockerfile b/Containerfile similarity index 72% rename from Dockerfile rename to Containerfile index 25b987d..0d2fc04 100644 --- a/Dockerfile +++ b/Containerfile @@ -11,8 +11,8 @@ RUN apt-get update && \ RUN pip install -U pip && \ pip install --group prod -COPY docker-entrypoint.sh /usr/local/bin/ -ENTRYPOINT ["docker-entrypoint.sh"] +COPY container-entrypoint.sh /usr/local/bin/ +ENTRYPOINT ["container-entrypoint.sh"] EXPOSE 8080 diff --git a/docker-entrypoint.sh b/container-entrypoint.sh similarity index 100% rename from docker-entrypoint.sh rename to container-entrypoint.sh