From: Dessalines Date: Thu, 29 Aug 2019 02:26:42 +0000 (-0700) Subject: Removing latest from dockerfile. X-Git-Url: http://these/git/%7B%60%24%7BarchiveUrl%7D/static/%7BfrontRss%7D?a=commitdiff_plain;h=de8c2198afb61ae45d2210125c67a49422b9a2e8;p=lemmy.git Removing latest from dockerfile. --- diff --git a/docker/dev/Dockerfile b/docker/dev/Dockerfile index 0eb5f60d..69ef3aae 100644 --- a/docker/dev/Dockerfile +++ b/docker/dev/Dockerfile @@ -1,4 +1,5 @@ FROM node:10-jessie as node + WORKDIR /app/ui # Cache deps @@ -9,7 +10,7 @@ RUN yarn install --pure-lockfile COPY ui /app/ui RUN yarn build -FROM rust:latest as rust +FROM rust:1.37 as rust # Install musl RUN apt-get update @@ -34,7 +35,7 @@ RUN RUSTFLAGS=-Clinker=musl-gcc cargo build --frozen --release --target=x86_64-u # Get diesel-cli on there just in case # RUN cargo install diesel_cli --no-default-features --features postgres -FROM alpine:latest +FROM alpine:3.10 # Install libpq for postgres RUN apk add libpq