diff options
| author | Miguel <m.i@gmx.at> | 2019-02-19 19:03:55 +0100 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2019-02-19 19:03:55 +0100 |
| commit | 0b34aca85e4a233945d0b09e6e24e048ded49e96 (patch) | |
| tree | 8cf53f5e29506aa945906fb77fa485711740bcb1 | |
| parent | f4775c82000199e06530782ef8c9ec0464543e19 (diff) | |
fix COPY in Dockerfile
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ FROM haskell LABEL maintainer="Michal Idziorek <m.i@gmx.at>" WORKDIR /estatico -COPY * /estatico/ +COPY ./ /estatico/ RUN stack build ENTRYPOINT ["stack","run","staticus-exe","--"] CMD [""] |
