forked from Ruderverein-Donau-Linz/rowt
20 lines
418 B
Docker
20 lines
418 B
Docker
|
FROM rust:latest
|
||
|
|
||
|
# COPY . /
|
||
|
|
||
|
|
||
|
RUN apt-get update && apt-get install -y sqlite3
|
||
|
|
||
|
# nodejs
|
||
|
RUN apt-get install -y curl && \
|
||
|
curl -sL https://deb.nodesource.com/setup_21.x | bash - && \
|
||
|
apt-get install -y nodejs
|
||
|
|
||
|
# playwright
|
||
|
RUN npx playwright install --with-deps
|
||
|
|
||
|
# deployment
|
||
|
RUN rustup target add x86_64-unknown-linux-musl
|
||
|
RUN apt-get install -y -qq pkg-config sshpass musl musl-tools curl gnupg libssl-dev
|
||
|
|