Skip to content

Commit 885d31a

Browse files
authored
Merge pull request #94 from andrewm4894/fix-ci
fix ci
2 parents aca8ca8 + 4e1376c commit 885d31a

File tree

8 files changed

+16
-6
lines changed

8 files changed

+16
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,16 @@
22
"name": "anomstack",
33
"forwardPorts": [3000],
44
"remoteUser": "root",
5-
"postCreateCommand": "bash .devcontainer/post_create_command.sh"
5+
"postCreateCommand": "bash .devcontainer/post_create_command.sh",
6+
"customizations": {
7+
"vscode": {
8+
"extensions": [
9+
"github.copilot",
10+
"github.copilot-chat",
11+
"ms-azuretools.vscode-docker",
12+
"ms-vscode.makefile-tools",
13+
"ms-python.python"
14+
]
15+
}
16+
}
617
}

dagster_cloud.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
locations:
22
- location_name: anomstack
33
code_source:
4-
python_file: ./anomstack/main.py
4+
python_file: anomstack/main.py
55
working_directory: .
6-

docker/Dockerfile.anomstack_code

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y git
44

55
WORKDIR /opt/dagster/app
66

7-
COPY ../requirements/requirements.txt /opt/dagster/app/requirements.txt
7+
COPY ../requirements.txt /opt/dagster/app/requirements.txt
88

99
RUN pip install -r requirements.txt
1010

docker/Dockerfile.anomstack_dashboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y \
1111
git \
1212
&& rm -rf /var/lib/apt/lists/*
1313

14-
COPY ../requirements/requirements.txt /opt/dagster/app/requirements.txt
14+
COPY ../requirements.txt /opt/dagster/app/requirements.txt
1515

1616
RUN pip install -r requirements.txt
1717

File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
def read_requirements():
5-
with open('requirements/requirements.txt') as req:
5+
with open('requirements.txt') as req:
66
return req.read().splitlines()
77

88

0 commit comments

Comments
 (0)