9 lines
151 B
Docker
9 lines
151 B
Docker
FROM debian:bullseye-slim
|
|
|
|
# Kraken relies on this path being the specified path
|
|
WORKDIR /src/work/
|
|
|
|
COPY . .
|
|
|
|
RUN echo "# README docker" >> README.md
|