feat: add basic functionality
This commit is contained in:
commit
376b9d6877
11 changed files with 1168 additions and 0 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue