Add make date
This commit is contained in:
parent
15ed6504b1
commit
db5de81c09
|
@ -6,7 +6,7 @@ RUN npm install && \
|
||||||
|
|
||||||
FROM python:3.10-slim-bullseye
|
FROM python:3.10-slim-bullseye
|
||||||
|
|
||||||
ENV VERSION_NUMBER 0.1.0-46-gfd9bf8c
|
ENV VERSION_NUMBER 0.1.0-47-g15ed650
|
||||||
ENV PROD 1
|
ENV PROD 1
|
||||||
|
|
||||||
RUN useradd --create-home --uid 1000 timetracker
|
RUN useradd --create-home --uid 1000 timetracker
|
||||||
|
|
3
Makefile
3
Makefile
|
@ -47,3 +47,6 @@ test: poetry.lock
|
||||||
|
|
||||||
sethookdir:
|
sethookdir:
|
||||||
git config core.hooksPath .githooks
|
git config core.hooksPath .githooks
|
||||||
|
|
||||||
|
make date:
|
||||||
|
python3 -c 'import datetime; from zoneinfo import ZoneInfo; print(datetime.datetime.isoformat(datetime.datetime.now(ZoneInfo("Europe/Prague")), timespec="minutes", sep=" "))'
|
Loading…
Reference in New Issue