feat: add basic functionality

This commit is contained in:
cătălin 2022-08-10 18:34:41 +02:00
commit 376b9d6877
Signed by: catalin
GPG key ID: 0178DF42F43E5FD2
11 changed files with 1168 additions and 0 deletions

19
Dockerfile Normal file
View file

@ -0,0 +1,19 @@
FROM python:3.10-alpine
RUN apk add --no-cache \
curl \
gcc \
libressl-dev \
musl-dev \
libffi-dev \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal \
&& source $HOME/.cargo/env \
&& curl -sSL https://install.python-poetry.org | python3 - --preview \
&& ln -fs /root/.local/bin/poetry /usr/local/bin \
&& rm -rf /root/.rustup \
&& apk del \
curl \
gcc \
libressl-dev \
musl-dev \
libffi-dev