This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7-slim-stretch | |
# --- | |
# Build Arguments | |
# --- | |
ARG BUILD_DATE | |
ARG PROJECT_NAME | |
# Avoid questions from debconf | |
ARG DEBIAN_FRONTEND=noninteractive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# --- | |
# Global Variables | |
# --- | |
project_name=$(basename $(pwd)) | |
docker_user=docker_username | |
registry=docker_registry | |
tag=latest | |
docker_image=${registry}/${docker_user}/${project_name}:${tag} |
NewerOlder