johndeniel commited on
Commit
1504d85
1 Parent(s): 18606d8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -39,6 +39,9 @@ RUN apt-get update && apt-get install -y \
39
  # Copy the built binary from the builder stage
40
  COPY --from=builder /spotify/target/release/spotify /usr/local/bin/spotify
41
 
 
 
 
42
  # Expose the port the app runs on
43
  EXPOSE 7860
44
 
 
39
  # Copy the built binary from the builder stage
40
  COPY --from=builder /spotify/target/release/spotify /usr/local/bin/spotify
41
 
42
+ # Copy the static files to the final image
43
+ COPY src/static /usr/local/bin/static
44
+
45
  # Expose the port the app runs on
46
  EXPOSE 7860
47