1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-16 15:17:28 +00:00

improve dev tooling

This commit is contained in:
Anson 2023-09-04 03:24:49 +00:00
parent 10c9a5a9e4
commit f364a82aad
4 changed files with 47 additions and 58 deletions

View File

@ -1,20 +1,3 @@
FROM python:3.11-buster AS builder FROM python:3.11
COPY requirements.txt /requirements.txt
RUN pip install --user -r requirements.txt
FROM python:3.11-slim
ENV MPLBACKEND=Agg
COPY --from=builder /root/.local /root/.local
RUN pip install --no-cache-dir black
ENV TELEGRAM=TOKEN
ENV MARKETDATA=TOKEN
COPY . . COPY . .
# CMD [ "python", "./bot.py" ]

View File

@ -1,26 +1,41 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: // For format details, see https://aka.ms/devcontainer.json. For config options, see the
// https://github.com/microsoft/vscode-dev-containers/tree/v0.191.0/containers/docker-existing-dockerfile // README at: https://github.com/devcontainers/templates/tree/main/src/python
{ {
"name": "DockerDev", "name": "Python 3",
// Sets the run context to one level up instead of the .devcontainer folder. // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"context": "..", // "image": "mcr.microsoft.com/devcontainers/python:1-3-bookworm",
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename. "build": { "dockerfile": "Dockerfile" },
"dockerFile": "Dockerfile", "features": {
// Set *default* container specific settings.json values on container create. "ghcr.io/devcontainers-contrib/features/black:2": {},
"settings": {}, "ghcr.io/devcontainers-contrib/features/mypy:2": {},
// Add the IDs of extensions you want installed when the container is created. "ghcr.io/devcontainers-contrib/features/pylint:2": {},
"extensions": [ "ghcr.io/devcontainers/features/docker-in-docker": {}
"ms-python.python", },
"ms-azuretools.vscode-docker" "customizations": {
] "vscode": {
// Use 'forwardPorts' to make a list of ports inside the container available locally. "extensions": [
// "forwardPorts": [], "ms-python.black-formatter",
// Uncomment the next line to run commands after the container is created - for example installing curl. "ms-python.flake8",
// "postCreateCommand": "apt-get update && apt-get install -y curl", "ms-python.vscode-pylance",
// Uncomment when using a ptrace-based debugger like C++, Go, and Rust "ms-python.python"
// "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], ]
// Uncomment to use the Docker CLI from inside the container. See https://aka.ms/vscode-remote/samples/docker-from-docker. }
// "mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ], },
// Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode" "postCreateCommand": "pip3 install --user -r dev-reqs.txt"
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "pip3 install --user -r requirements.txt",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
} }

12
.vscode/launch.json vendored
View File

@ -1,12 +0,0 @@
{
"configurations": [
{
"name": "Telegram Bot",
"type": "python",
"request": "launch",
"program": "bot.py",
"console": "integratedTerminal",
"python": "python3.11"
}
]
}

View File

@ -1,5 +1,8 @@
{ {
"python.formatting.provider": "black", "python.formatting.provider": "none",
"python.linting.mypyEnabled": true, "python.linting.mypyEnabled": true,
"python.linting.flake8Enabled": true, "python.linting.flake8Enabled": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
}
} }