Compare commits

..

No commits in common. "6def13d2b6cb22ebf75ea6903b1e20f141f72a7e" and "7e0d8d90d7a7ce379755aeb7279a27695a79584a" have entirely different histories.

2 changed files with 2 additions and 5 deletions

View File

@ -7,7 +7,7 @@ steps:
- name: build container
image: plugins/docker
settings:
repo: registry.kucharczyk.xyz/timetracker
repo: registry.kucharczyk.xyz/timetracker:latest
tags: latest
trigger:
event:

View File

@ -1,8 +1,5 @@
FROM python:3.10-slim-bullseye
RUN apt update \
&& apt install --no-install-recommends --yes \
git \
&& rm -rf /var/lib/apt/lists/*
RUN apt update && apt install --no-install-recommends --yes git
ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv pip $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"