]> Untitled Git - lemmy.git/commitdiff
Fixing cache dev dockerfile
authorDessalines <tyhou13@gmx.com>
Tue, 27 Oct 2020 15:57:40 +0000 (10:57 -0500)
committerDessalines <tyhou13@gmx.com>
Tue, 27 Oct 2020 15:57:40 +0000 (10:57 -0500)
docker/dev/Dockerfile

index 69af565374b464a06f3c478720899ca33413e42c..d10e72635d54e95e82fcdb99e5c6d72c594325ec 100644 (file)
@@ -6,7 +6,7 @@ ENV HOME=/home/root
 WORKDIR /app
 
 # Copy the source folders
-COPY . .
+COPY . ./
 
 # Build for debug
 RUN --mount=type=cache,target=/usr/local/cargo/registry \
@@ -15,28 +15,21 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
 RUN --mount=type=cache,target=/app/target \
     cp target/debug/lemmy_server lemmy_server
 
-FROM ekidd/rust-musl-builder:1.47.0 as docs
+FROM peaceiris/mdbook:v0.3.7 as docs
 WORKDIR /app
 COPY docs ./docs
-RUN sudo chown -R rust:rust .
 RUN mdbook build docs/
 
-FROM alpine:3.12
+FROM ubuntu:20.10
 
-# Install libpq for postgres
-RUN apk add libpq
-
-# Install Espeak for captchas
-RUN apk add espeak
+# Install libpq for postgres and espeak
+RUN apt-get update -y
+RUN apt-get install -y libpq-dev espeak 
 
 # Copy resources
 COPY config/defaults.hjson /config/defaults.hjson
 COPY --from=rust /app/lemmy_server /app/lemmy
 COPY --from=docs /app/docs/book/ /app/documentation/
 
-RUN addgroup -g 1000 lemmy
-RUN adduser -D -s /bin/sh -u 1000 -G lemmy lemmy
-RUN chown lemmy:lemmy /app/lemmy
-USER lemmy
 EXPOSE 8536
 CMD ["/app/lemmy"]