rowt/Dockerfile
philipp c6da8b3db1
Some checks failed
CI/CD Pipeline / test-frontend (push) Failing after 1s
CI/CD Pipeline / test-backend (push) Failing after 0s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped
try
2024-01-17 18:09:29 +01:00

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