cycls 0.0.2.86__py3-none-any.whl → 0.0.2.87__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cycls/function.py CHANGED
@@ -165,8 +165,8 @@ class Function:
165
165
 
166
166
  def _dockerfile_local(self) -> str:
167
167
  return f"""{self._dockerfile_preamble()}
168
- COPY runner.py /app/runner.py
169
- ENTRYPOINT ["python", "/app/runner.py", "/io"]
168
+ COPY runner.py /runner.py
169
+ ENTRYPOINT ["python", "/runner.py", "/io"]
170
170
  """
171
171
 
172
172
  def _dockerfile_deploy(self, port: int) -> str: