File: Dockerfile

package info (click to toggle)
rust-colored 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 468 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 107 bytes parent folder | download | duplicates (25)
1
2
3
4
5
6
7
8
9
FROM rust:latest

ENV SRC_DIR /src
RUN mkdir $SRC_DIR
WORKDIR $SRC_DIR
VOLUME $SRC_DIR

CMD ["/bin/bash"]