PacktPublishing / Event-Driven-Architecture-in-Golang

Event-Driven Architecture in Golang, published by Packt
MIT License
331 stars 104 forks source link

Fix for Ch-4 Dockerfile #1

Closed v8tix closed 1 year ago

v8tix commented 1 year ago

This problem does not allow the successful containers built: ... Step 5/11 : COPY .. ./ ...

Logs:

COPY failed: forbidden path outside the build context: .. () ERROR: Service 'monolith' failed to build : Build failed

The solution is shown below: ... COPY . ./ ...