9 lines
285 B
Docker
9 lines
285 B
Docker
FROM 525595969507.dkr.ecr.eu-central-1.amazonaws.com/qwan/csharp:latest
|
|
|
|
COPY --chown=experience:experience ./ vendingmachine
|
|
RUN cd vendingmachine &&\
|
|
git init . && git add . && git commit -am "initial commit" &&\
|
|
git remote add qwan /git/qwan/vendingmachine
|
|
|
|
USER experience
|