Mercurial > code > home > repos > gcalendarwatch
comparison Dockerfile @ 31:6f0b31ac587e
project setup and projects.bigasterisk.com deps
author | drewp@bigasterisk.com |
---|---|
date | Sat, 08 Jul 2023 21:53:36 -0700 |
parents | c1eac229b355 |
children | cb990883e52f |
comparison
equal
deleted
inserted
replaced
30:dfba6e5de4a7 | 31:6f0b31ac587e |
---|---|
1 FROM docker.io/ubuntu:jammy | 1 FROM bang5:5000/base_basic |
2 RUN apt-get update | |
3 | |
4 ENV TZ=America/Los_Angeles | |
5 ENV LANG=en_US.UTF-8 | |
6 | |
7 RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
8 RUN DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata | |
9 | |
10 RUN apt-get install -y python3-pip git curl | |
11 RUN pip3 install pdm | |
12 | 2 |
13 WORKDIR /opt | 3 WORKDIR /opt |
14 | 4 |
15 COPY pyproject.toml pdm.lock ./ | 5 COPY pyproject.toml pdm.lock ./ |
16 RUN pdm install | 6 RUN pdm install |