Files
matrix-authentication-service/.devcontainer/Dockerfile
Quentin Gliech bac4125d8c Load environment variables from .env files
This allows to properly set the OAuth 2.0 Issuer base in the Codespace
2021-08-15 09:21:15 +00:00

10 lines
360 B
Docker

FROM mcr.microsoft.com/vscode/devcontainers/rust:0-1
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install --no-install-recommends postgresql-client
COPY .env /.env
# TODO: pre-build custom images, those take too much time
#RUN cargo install sqlx-cli --no-default-features --features postgres
#RUN cargo install cargo-edit